home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multimedia Joker 5 & 6
/
Multimedia Joker 1996-05 & 06 (1996)(Joker Verlag)(DE)[Amiga-Mac-PC].iso
/
mac
/
AMIGA
/
PDTOOLS
/
OPUSMPEG.DMS
/
OPUSMPEG.adf
/
Unpack
< prev
next >
Wrap
Text File
|
1995-12-10
|
2KB
|
66 lines
failat 30
echo "*n*e[1;32m ____________________________________________________________________"
echo " *e[43m *e[0m"
echo " *e[0;32;43m Welcome to the unpack utilitie *e[0m"
echo " *e[1;4;43m *e[0m"
echo ""
echo " This script will unpack the cdda_mpeg_op5.lzx and cd_cd32_opus5.lzx "
echo " archive to some directory of your choice. After that, you will have to"
echo " move to this directory and click on the Install icon to install CDDA, "
echo " MPEG-Soundsystem & Sampleplayer for DirOpus5."
echo " Notes: A drawer called cdda_mpeg_op5 and cd_cd32_opus5 will be created"
echo " in the specified directory."
echo " You should have at least 1.5 Megs of space available there."
echo ""
echo " Please enter the directory now : " noline
set >nil: dest ?
echo ""
if $dest eq ""
skip abort
endif
if $dest eq "*$dest"
skip abort
endif
if not exists $dest
echo "'$dest' does not exist. Shall I create it (y/n)? " noline
set >nil: yesno ?
if $yesno eq "ja"
skip create
endif
if $yesno eq "j"
skip create
endif
if $yesno eq "y"
skip create
endif
if $yesno eq "yes"
skip create
endif
skip abort
lab create
makedir $dest
if warn
echo "Failed to create '$dest'."
skip abort
endif
endif
echo ""
echo " Unpacking process running ... " noline
unlzx <nil: -F x cdda_mpeg_op5.lzx $dest
unlzx <nil: -F x cd_cd32_opus5.lzx $dest
echo " Unpack Installation OK."
wait 3
quit
lab abort
echo " Installation aborted."
wait 3
quit